home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 24
/
Amiga Format AFCD24 (Feb 1998, Issue 108).iso
/
-in_the_mag-
/
emulation
/
uae
/
uae-0.4.3
/
dos-null.c
< prev
next >
Wrap
C/C++ Source or Header
|
1998-01-20
|
989b
|
78 lines
/*
* UAE - The Un*x Amiga Emulator
*
* DOS debug only interface.
*
* (c) 1995 Bernd Schmidt
* (c) 1996 Gustavo Goedert
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <assert.h>
#include <signal.h>
#include <unistd.h>
#include "config.h"
#include "amiga.h"
#include "options.h"
#include "memory.h"
#include "custom.h"
#include "newcpu.h"
#include "keyboard.h"
#include "xwin.h"
#include "keybuf.h"
long int xcolors[4096];
void (*DrawPixel)(int, xcolnr);
void prepare_line(int y, bool need_double)
{
}
void flush_line(void)
{
}
void DrawPixelNull(int x, xcolnr col)
{
}
void flush_screen(void)
{
}
bool buttonstate[3] = { false, false, false };
int lastmx, lastmy;
bool newmousecounters = false;
int graphics_init(void)
{
DrawPixel=DrawPixelNull;
return 1;
}
void graphics_leave(void)
{
}
void handle_events(void)
{
}
bool debuggable(void)
{
return true;
}
bool needmousehack(void)
{
return false;
}
void LED(int on)
{
}